projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
570c054
)
* lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup.
author
Glenn Morris
<rgm@gnu.org>
Thu, 19 Dec 2013 08:14:37 +0000
(
00:14
-0800)
committer
Glenn Morris
<rgm@gnu.org>
Thu, 19 Dec 2013 08:14:37 +0000
(
00:14
-0800)
Fixes: debbugs:16121
lisp/ChangeLog
patch
|
blob
|
history
lisp/emacs-lisp/ert.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index 5fd4ff56c6690fe80f9533a8ae27dcf2f4081b97..249f629b5f494942d24f10587287f648107f3678 100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-1,3
+1,8
@@
+2013-12-19 Glenn Morris <rgm@gnu.org>
+
+ * emacs-lisp/ert.el (ert-select-tests):
+ Fix string/symbol mixup. (Bug#16121)
+
2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
* progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
diff --git
a/lisp/emacs-lisp/ert.el
b/lisp/emacs-lisp/ert.el
index a131f48c488f8d578c2d7435598fcb8a15eb5407..01b610396a94dbc6e63075b0a72c95a1b9485d8b 100644
(file)
--- a/
lisp/emacs-lisp/ert.el
+++ b/
lisp/emacs-lisp/ert.el
@@
-999,7
+999,8
@@
contained in UNIVERSE."
(list (cl-remove-if-not (lambda (test)
(and (ert-test-name test)
(string-match selector
- (ert-test-name test))))
+ (symbol-name
+ (ert-test-name test)))))
universe))))
(ert-test (list selector))
(symbol